
.item-date {
    color: #888888;
    font-size: 14px;
    font-weight: 600;
}

#content-page.span9 {
    position: relative;
    border-left: 1px solid #e6e6e6; /*do not use !important please. instead use more specific selectors*/
}

iframe[src^="https://www.youtube"] {
    max-width: 100%;
}

.page-template-zoom-landing-php .container.group #hidden-info .gform_wrapper,
.page-template-zoom-landing_expanded-php .container.group #hidden-info .gform_wrapper,
.page-template-iot-landing-php .container.group #hidden-info .gform_wrapper,
.page-template-zoom-iot-childs-php .container.group #hidden-info .gform_wrapper {
    padding-left: 15px;
}

.page-template-zoom-landing-php .container.group,
.page-template-zoom-landing_expanded-php .container.group,
.page-template-iot-landing-php .container.group,
.page-template-zoom-iot-childs-php .container.group,
.container.group {
    margin-bottom: 30px;
}

.has-border.orange-detail:after {
    bottom: -2px !important;
    height: 2px !important;
}

textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus {
    background: #FAFAFA;
    box-shadow: none !important;
}

.banner_slider {
    background-color: #999;
    padding: 5px 10px;
    position: relative;
    min-height: 210px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
}

.banner_slider .banner_overlay {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .8;
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
}
.banner_slider .pb_title {
    color: #fff;
    font-size: 32px;
    line-height: 1.2;
    margin: 0;
    font-weight: normal;
    position:relative;
}

/* HIDE ADD TO CART CART ICON */

.x-cart-notification {
    display: none;
}

/* Profile update Popup */

.profile-update-request {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s;
    transition: all .3s;
    background-color: rgba(0, 0, 0, 0.5);
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
    .profile-update-request {
        background-color: rgba(0, 0, 0, 0.3);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}

.profile-update-request__content {
    position: relative;
    top: 50%;
    left: 50%;
    width: 80%;
    max-width: 999px;
    color: #cfd2d3;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    padding: 70px;
    background-color: #323e48;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.75);
    -ms-transform: translate(-50%, -50%) scale(0.75);
    transform: translate(-50%, -50%) scale(0.75);
    -webkit-transition: all .2s;
    transition: all .2s;
}

@media only screen and (max-width: 1200px) {
    .profile-update-request__content {
        padding: 30px;
        font-size: 16px;
        line-height: 20px;
    }
}

@media only screen and (max-width: 900px) {
    .profile-update-request__content {
        padding: 25px;
        font-size: 14px;
        line-height: 18px;
    }
}

.profile-update-request__close-button {
    position: absolute;
    top: 0;
    right: 0;
    color: #cfd3d6;
    border: none;
    background-color: transparent;
    font-size: 40px;
    line-height: 1;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.profile-update-request__close-button:hover {
    color: #fff;
}

.profile-update-request .profile-update-request__text,
.profile-update-request .profile-update-request__text p {
    color: #fff;
    font-family: 'Minion Pro', Georgia, 'Times New Roman', serif;
    font-size: 32px;
    line-height: 36px;
    text-align: center;
    font-weight: 600;
    max-width: 720px;
    margin: 0 auto 55px;
}

.profile-update-request .profile-update-request__text p {
    margin-bottom: 20px;
}

@media only screen and (max-width: 600px) {
    .profile-update-request .profile-update-request__text {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 35px;
    }
}

.profile-update-request__actions {
    text-align: center;
    color: #fff;
}

.profile-update-request__actions .pbtn:not(:last-child) {
    margin-right: 10px;
}

@media only screen and (max-width: 600px) {
    .profile-update-request__actions .pbtn:not(:last-child) {
        margin: 0;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 600px) {
    .profile-update-request__actions {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.profile-update-request--active {
    opacity: 1;
    visibility: visible;
}

.profile-update-request--active .profile-update-request__content {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.profile-update-request--loading .profile-update-request__subscribe {
    display: none;
}

.profile-update-request--loading .profile-update-request__status {
    display: block;
}

/* Profile Update Popup Buttons */

.pbtn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 8px 18px;
    font-size: 14px;
    line-height: 1.3;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.pbtn:hover,
.pbtn:focus {
    text-decoration: none;
}

.pbtn:focus,
.pbtn.focus {
    outline: 0;
}

.pbtn.disabled,
.pbtn:disabled {
    opacity: 0.65;
}

.pbtn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

a.pbtn.disabled,
fieldset:disabled a.pbtn {
    pointer-events: none;
}

.pbtn-primary {
    color: #ffffff;
    background-color: #e0121d;
    border-color: #e0121d;
}

.pbtn-primary:hover {
    color: #ffffff;
    background-color: rgba(224, 18, 29, 0.8);
    border-color: rgba(224, 18, 29, 0.8);
}

.pbtn-primary.disabled,
.pbtn-primary:disabled {
    color: #ffffff;
    background-color: #e0121d;
    border-color: #e0121d;
    cursor: not-allowed;
}

.pbtn-primary:not(:disabled):not(.disabled):active,
.pbtn-primary:not(:disabled):not(.disabled).active {
    color: rgba(255, 255, 255, 0.5);
    background-color: #e0121d;
    border-color: #e0121d;
}

.pbtn-outline {
    color: currentColor;
    background-color: transparent;
    border-color: currentColor;
}

.pbtn-outline:hover {
    color: #ffffff;
    background-color: #e0121d;
    border-color: #e0121d;
}

.pbtn-outline.disabled,
.pbtn-outline:disabled {
    color: currentColor;
    background-color: transparent;
    border-color: currentColor;
    cursor: not-allowed;
}

.pbtn-outline:not(:disabled):not(.disabled):active,
.pbtn-outline:not(:disabled):not(.disabled).active {
    color: rgba(186, 21, 37, 0.5);
    background-color: transparent;
    border-color: #ba1525;
}

.pbtn-md {
    padding: 10px 40px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}

/*///////////////////////////////////////////////////////////////////////*/
/*----------------------------- HELPING YOU -----------------------------*/
/*///////////////////////////////////////////////////////////////////////*/

/*----------------------------------------------*/
/*------- PUBLICATIONS AND WEBINARS (PW) -------*/
/*----------------------------------------------*/

.event_module_wrap,
.event_module_wrap * {
    box-sizing: border-box;
}

.event_module_wrap {
    position: relative;
    padding-bottom: 80px;
}

.tmf_event_load_data {
    min-height: 120px;
}

.tmf_filter_wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #D8D8D8;
    position: relative;
    z-index: 10;
}

.tmf_filter_container {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    flex-wrap: wrap;
    border-right: 1px solid #D8D8D8;
}

.tmf_filter_holder {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
}

.tmf_filter_container .tmf_event_filter label {
    position: relative;
    padding-left: 20px;
    cursor: pointer;
}

.tmf_filter_container .tmf_event_filter label input {
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.tmf_filter_wrap .tmf_filter_container:last-child {
    border: none;
}

.tmf_filter_dd {
    position: absolute;
    background: #FAFAFA;
    top: 100%;
    left: -1px;
    width: calc(100% + 2px);
    height: 200px;
    overflow: auto;
    padding: 24px 10px;
    border: 1px solid #D8D8D8;
    display: none;
    z-index: 99;
}

.tmf_filter_holder:hover .tmf_filter_dd {
    display: block;
}

.tmf_fliter_name {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: normal;
    color: #1E3038;
}

.event-list-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px 0px;
    position: relative;
    margin-bottom: 70px;
}

.event-list-container:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #fff;
}

.event_wrap {
    max-width: 230px;
    padding: 15px;
    margin: auto;
    box-sizing: border-box;
}

.event-list-container .single-event-content {
    border-right: 1px solid #D8D8D8;
    position: relative;
    text-align: center;
    padding-bottom: 50px;
}

.tmf_event_cat_wrap.collapse_content .event-list-container,
.tmf_event_cat_wrap.collapse_content .event-list-container-dls {
    height: 0;
    overflow: hidden;
}
.tmf_event_cat_wrap .cat_toggle_header:after {
    content: "\f077";
    font-family: FontAwesome;
    font-size: 0.6em;
}

.tmf_event_cat_wrap .cat_toggle_header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    align-items: center;
}

.tmf_event_cat_wrap.collapse_content .cat_toggle_header:after {
    transform: rotate(-180deg);
}

.event_logo img {
    width: 170px;
    height: 125px;
    margin: auto;
    display: table;
    object-fit: contain;
}

.event_logo {
    margin-bottom: 25px;
}

.event_title {
    font-size: 14px;
    color: #555555;
    font-weight: bold;
}

.event_date {
    font-size: 14px;
    font-weight: normal;
    color: #979797;
}

.event_link {
    padding-top: 0;
    text-align: center;
    position: absolute;
    width: 100%;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    background: transparent;
}

.event_link a {
    margin: 0 !important;
}

.loading_result {
    position: absolute;
    z-index: 99;
    background: hsl(0deg 0% 100% / 75%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
}

.loading_result .loader {
    border: 3px solid #777;
    border-radius: 50%;
    border-top: 3px solid #fff;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    display: block;
    margin: 80px auto 0;
}

.tmf_fliter_name:after {
    content: '';
    width: 10px;
    height: 10px;
    display: block;
    background: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIuMDExIDUxMi4wMTEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMi4wMTEgNTEyLjAxMTsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSI1MTJweCIgaGVpZ2h0PSI1MTJweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTUwNS43NTUsMTIzLjU5MmMtOC4zNDEtOC4zNDEtMjEuODI0LTguMzQxLTMwLjE2NSwwTDI1Ni4wMDUsMzQzLjE3NkwzNi40MjEsMTIzLjU5MmMtOC4zNDEtOC4zNDEtMjEuODI0LTguMzQxLTMwLjE2NSwwICAgIHMtOC4zNDEsMjEuODI0LDAsMzAuMTY1bDIzNC42NjcsMjM0LjY2N2M0LjE2LDQuMTYsOS42MjEsNi4yNTEsMTUuMDgzLDYuMjUxYzUuNDYyLDAsMTAuOTIzLTIuMDkxLDE1LjA4My02LjI1MWwyMzQuNjY3LTIzNC42NjcgICAgQzUxNC4wOTYsMTQ1LjQxNiw1MTQuMDk2LDEzMS45MzMsNTA1Ljc1NSwxMjMuNTkyeiIgZmlsbD0iIzAwMDAwMCIvPgoJPC9nPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=);
    background-size: 10px;
    background-repeat: no-repeat;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.tmf_event_filter input {
    margin-top: 0;
    margin-right: 5px;
    vertical-align: baseline;
}

.dls_section {
    padding: 70px 0 0;
}

.dls_section h2 {
    margin-bottom: 40px;
}

.event-list-container-dls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 80px 20px;
    margin-bottom: 100px;
}

.event-list-container-dls .single-event-content {
    border: 1px solid #B8BEBE;
    position: relative;
    text-align: center;
    padding-bottom: 25px;
}

.event-list-container-dls .event_link {
    bottom: -15px;
}

.event-list-container .partners {
    display: none;
}

.event-list-container-dls .partners {
    position: absolute;
    bottom: -70px;
    width: 106px;
    left: 50%;
    transform: translateX(-50%);
}

.event-list-container-dls .partners img {
    width: 106px;
    height: 50px;
    object-fit: contain;
    margin: 0;
}

.event-list-container-dls .event_wrap {
    padding: 30px 15px 15px;
}

.event-list-container-dls .event_logo img {
    width: 150px;
    height: 90px;
}

@media screen and (max-width: 767px) {
    .event-list-container, .event-list-container-dls {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 420px) {
    .event-list-container, .event-list-container-dls {
        grid-template-columns: repeat(1, 1fr);
    }

    .event-list-container > div {
        border-right: none !important;
    }

    .tmf_filter_container {
        border-bottom: 1px solid #D8D8D8;
    }

    .tmf_filter_wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*----------------------------------------------*/
/*-------- TRAINING & CERTIFICATION (TC) -------*/
/*----------------------------------------------*/

/*CERTIIFICATION BADGES*/
#certification-badges {
    margin-bottom: 30px;
}

#certification-badges .badge {
    height: 142px;
    margin-top: 15px;
    margin-left: 5px;
    background-image: url('/wp-content/themes/sistina-child/images/icons/badges-2018.png');
    background-position: center 100px;
    background-repeat: no-repeat;
    background-color: transparent;
}

#certification-badges .badge a {
    display: block;
    height: 100%;
}

#certification-badges .business-architect {
    background-position: center 0
}

#certification-badges .business-development-manager {
    background-position: center -142px
}

#certification-badges .business-process-modeler {
    background-position: center -284px
}

#certification-badges .information-modeler {
    background-position: center -426px
}

#certification-badges .operation-architect {
    background-position: center -568px
}

#certification-badges .revenue-assurance-business-analyst {
    background-position: center -710px
}

/*SUGGESTED COURSES TO TAKE NEXT*/
.suggested-courses {
    overflow: hidden;
}

.suggested-courses .courses-slider {
    width: 300%;
    position: relative;
}

.suggested-courses .courses-slider > .row-fluid {
    float: left;
}

.suggested-courses .course {
    display: table;
}

.suggested-courses .course span.icon {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    float: left;
}

.suggested-courses .course span.icon img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.suggested-courses .course p.title {
    display: table-cell;
    vertical-align: middle;
    padding-right: 30px;
    font-size: 18px;
    font-weight: 700;
    color: #4d4d4d;
    margin: 0;
    -webkit-transition: 0.4s color;
    -o-transition: 0.4s color;
    transition: 0.4s color;
}

.suggested-courses a:hover .icon img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.suggested-courses a:hover .title {
    color: #133595;
}

/*navigation buttons*/
.suggested-courses .buttons {
    clear: left;
    text-align: center;
    padding-top: 30px;
}

.suggested-courses .buttons span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin-right: 8px;
}

.suggested-courses .buttons span:hover {
    cursor: pointer;
    background-color: #133595;
}

/*------------------------------------*/
/*-------------- EXAMS ---------------*/
/*------------------------------------*/

body.training-certification-exams ul.next-steps {
    padding-left: 50px;
}

body.training-certification-exams ul.next-steps li {
    font-size: 16px;
}

.procedure-step {
    display: table;
    margin-bottom: 25px;
}

.procedure-step .step {
    height: 60px;
    width: 60px;
    background-repeat: no-repeat;
    float: left;
    margin-right: 35px;
}

.procedure-step .step-1 {
    background-image: url("../framework/img/number-procedures-1.png");
}

.procedure-step .step-2 {
    background-image: url("../framework/img/number-procedures-2.png");
}

.procedure-step .step-3 {
    background-image: url("../framework/img/number-procedures-3.png");
}

.procedure-step p {
    margin-top: 0;
    margin-bottom: 0;
    display: table-cell;
    vertical-align: middle;
}

.courses-button {
    margin-top: 16px;
}

/*----------------------------------------------*/
/*------------------- COACHING -----------------*/
/*----------------------------------------------*/
.coaching a.button.primary {
    /*margin-top: -43px;*/
    padding: 10px 40px;
    align-content: center;
    text-align: center;
    display: inline-block;
}

/*----------------------------------------------*/
/*------- CONFORMANCE CERTIFICATION (CC) -------*/
/*----------------------------------------------*/

/*----------------------------------------------*/
/*--------- CC > CERTIFICATION AWARDED ---------*/
/*----------------------------------------------*/
table.certifications-awarded tr th,
table.certifications-awarded tr td {
    text-align: center;
    font-weight: 500;
    word-break: break-word;
    padding: 10px 5px !important;
}

table.certifications-awarded td p {
    display: none;
}

table#certifications-awarded {
    table-layout: fixed;
}

table#certifications-awarded td table {
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
}

table#certifications-awarded td div.faux-table {
    display: table;
}

table#certifications-awarded td div.faux-row {
    display: table-row;
}

table#certifications-awarded td div.faux-cell {
    vertical-align: middle;
}

table#certifications-awarded td .img_logo_table img {
    width: 90px;
    max-width: 100%;
    vertical-align: middle;
}

table#certifications-awarded td .img-logo-title {
    text-align: left;
}

/*----------------------------------------------*/
/*--------- CC > Assets Included ---------*/
/*----------------------------------------------*/
table.assets .thumb,
table.assets .thumb img {
    width: 50px;
    height: 50px;
}

table.assets .name {
    padding-left: 60px;
}

table.assets tr th {
    background-color: #eeeeee;
    border: 1px solid #E2E2E2;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    color: black;
    text-transform: none;
    line-height: 1.4em;
}

table.dataTable tr.child span.dtr-title {
    font-weight: normal;
}

table.dataTable tr.child td {
    padding-top: 10px;
}

table.assets tr {
    background-color: #FFFFFF;
}

table.assets tr td {
    border: 1px solid #EFEFEF;
    color: black;
    text-align: center;
    padding: 5px 15px 15px 15px;
}
table.assets tr td, table.assets tr td a {
    font-size: 13px;
}

table.assets tr th:first-child,
table.assets tr td:first-child {
    text-align: left;
    padding-left: 20px;
    width: 245px;
}

table.assets td p {
    margin-bottom: 0;
    color: black;
}

table.assets .thumb {
    float: left;
}

/*not member button*/
table.assets .logged-download .button.assets-download {
    display: none !important;
}

table.assets .logged-download .logged-download-grey {
    height: 35px;
}

table.assets .logged-download .logged-download-grey:before {
    display: inline-block;
    font-family: 'FontAwesome';
    content: '\f023';
    color: #fff;
    font-size: 30px;
    line-height: 35px;
}

table.assets a.assets-table {
    display: block;
    /*visibility: visible;*/
    color: #ff7e2e;
    width: 80px;
}

table.assets .logged-download {
    padding: 0;
    height: 35px;
    border-radius: 5px;
}

table.assets .logged-download {
    border-radius: 3px;
    margin: 0;
    width: 80px;
}

.sidebar a.log-in {
    display: none;
}

table.assets a.log-in {
    color: #dd0031;
}

table .logged-download {
    background: #CECECE;
}

table .logged-download.logged-download_type_link {
    background: none;
}

/*----------------------------------------------*/
/*----------------- PROCUREMENT ----------------*/
/*----------------------------------------------*/

/*----------------------------------------------*/
/*--------------- BENCHMARKING (B) -------------*/
/*----------------------------------------------*/

/*----------------------------------------------*/
/*----------------- ASSESSMENTS ----------------*/
/*----------------------------------------------*/

/*/////////////////////////////////////////////////////////////////////*/
/*---------------- BOOTSTRAP CUSTOM TMF MODIFICATIONS -----------------*/
/*/////////////////////////////////////////////////////////////////////*/

/*----- remove margin left on row-fluid (we add the class 'remove-lmargin')  -----*/

.row-fluid.remove-lmargin [class*="span"] {
    margin-left: 0 !important;
}

.row-fluid.remove-lmargin .span2 {
    width: 16.5%;
}

.row-fluid.remove-lmargin .span3 {
    width: 25%;
}

.row-fluid.remove-lmargin .span4 {
    width: 33.3%;
}

.row-fluid.remove-lmargin .span6 {
    width: 50%;
}

/* press coverage shortcode css */
.masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 2rem;
}

.masonry-item {
    position: relative;
}

.masonry .img_cont img {
    object-fit: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.masonry .img_cont {
    position: relative;
    padding-bottom: 50%;
    background: #ccc;
}

.masonry .description {
    font-size: 16px;
    padding-top: 10px;
}

.masonry .post-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.press_list_box a.page-numbers.current {
    background: #dd0031;
    color: #fff;
    margin-left: 0;
}